home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 47215 / 47215.xpi / chrome / content / lib / documents.js < prev    next >
Text File  |  2009-11-22  |  333b  |  17 lines

  1. (function()
  2. {
  3.     //returns a location for a document
  4.     this.documentGetLocation = function(aDoc)
  5.     {
  6.         return String(aDoc.location);
  7.     }
  8.     //gets the title of the  aTab-REVIEW
  9.     this.documentGetTitleFromTab = function(aTab)
  10.     {
  11.         return String(this.browserGetFromTab(aTab).contentDocument.title);
  12.     }
  13.  
  14.     return null;
  15.  
  16. }).apply(URLtoTabTitle);
  17.